@font-face {
	font-family: 'china';
	src: url(./font/china.ttf);
}
@font-face {
	font-family: 'English';
	src: url(./font/English.ttf);
}
@font-face {
	font-family: 'num';
	src: url(./font/num.ttf);
}
body,html{
	/*width: 100%;
	height: 100%;
	overflow-y: hidden;
	 background: url('../img/web.jpg') no-repeat ;
	 background-size:cover; */
}
*{
	margin: 0;
	padding: 0;
}
.box{
	width: 9%;


	position: absolute;

	padding-left: 5px;
	transition: all .5s ease .1s;
}
.num{
	font-family: 'num';
	font-size: 25px;
	color: #fdd000;
	font-weight: bold;
	margin-bottom: 20px;
	transform: scale(1.2);
	padding-left: 15px;
}

.china{
	font-family: "china";
	font-size: 10px;
		transform: scale(0.8);
		line-height: 1.5;
}
.english{
	font-family: "English";
	font-size: 7px;
	color: #fdd000;
		transform: scale(0.8);
		margin-top: -10px;
		line-height: 1.5;
}
.box1{
	width: 9%;
	position: absolute;
	padding-left: 10px;
	bottom: 5vh;
	transition: all .5s ease .1s;
}

.box:hover{
	transform: scale(1.2);
}
.box1:hover{
	transform: scale(1.2);
}
/* 波纹 */
		.point,
			.point::before,
			.point::after {
				position: absolute;
				width: 0.5vw;
				height: 1vh;
				border-radius: 50%;
				content: '';
			}

			.point::before {
				animation: scale 2s infinite;
			}

			.point::after {
				animation: scale2 2s infinite;
			}

			@keyframes scale {
				0% {
					transform: scale(1);
					opacity: 1
				}

				100% {
					transform: scale(1.5);
					opacity: 0;
				}
			}

			@keyframes scale2 {
				0% {
					transform: scale(1);
					opacity: 1;
				}

				100% {
					transform: scale(5);
					opacity: 0;
				}
			}


			.point,
			.point::before,
			.point::after {
				/* 设置颜色 */
				background-color:#fdd000;
			}


















